home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pappendvertices.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-16  |  806 b   |  32 lines

  1. /*
  2.  *--- PAppendVertices.h -----------------------------------------------------
  3.  * Copyright (c) 1996 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Wed, Oct 16, 1996 @ 3:32 PM.
  5.  *
  6.  * Description: This class is a little different than most other commands.
  7.  * The class client must create a complete PRequestBuf object and pass it
  8.  * into the constructor.  Refer to the SDK Guide for information about the
  9.  * format of the AppendVertices command parameters.
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef __AppendVertices__
  13. #define __AppendVertices__
  14.  
  15. class PRequestBuf;
  16.  
  17. class PAppendVertices
  18. {
  19.  
  20. public:
  21.  
  22.     PAppendVertices(PRequestBuf& request);
  23.  
  24. private:
  25.  
  26.     PAppendVertices();
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PAppendVertices.h
  32.